9def2d65f6bfd71a761df59ab6e4537aa3be43a3,tennis-stats/src/main/java/org/strangeforest/tcb/stats/controller/RivalriesController.java,RivalriesController,h2hHypotheticalMatchup,#number#number#LocalDate#LocalDate#LocalDate#String#String#String#,180
Before Change
modelMap.addAttribute("level", level);
modelMap.addAttribute("round", round);
modelMap.addAttribute("prediction", prediction);
modelMap.addAttribute("rankingHighlights1", rankingHighlights1);
modelMap.addAttribute("rankingHighlights2", rankingHighlights2);
modelMap.addAttribute("stats1", stats1);
modelMap.addAttribute("today", toDate(today));
return new ModelAndView("h2hHypotheticalMatchup", modelMap);
}
After Change
modelMap.addAttribute("date", date != null ? toDate(date) : aDate1);
modelMap.addAttribute("date1", aDate1);
modelMap.addAttribute("date2", aDate2);
modelMap.addAttribute("dateSelector1", dateSelector1);
modelMap.addAttribute("dateSelector2", dateSelector2);
modelMap.addAttribute("prediction", prediction);
modelMap.addAttribute("stats1", stats1);
return new ModelAndView("h2hHypotheticalMatchup", modelMap);